98f7ab2b46e0070d49bbd077c2db4a4ad00362db,findbugs/src/java/edu/umd/cs/findbugs/detect/CallToUnsupportedMethod.java,CallToUnsupportedMethod,analyzeMethod,#ClassContext#Method#,90

Before Change


     * @param method
     */
    private void analyzeMethod(ClassContext classContext, Method method) throws MethodUnprofitableException, CFGBuilderException, DataflowAnalysisException {
    	if (method.isSynthetic()) return;
    	CFG cfg = classContext.getCFG(method);
		TypeDataflow typeDataflow = classContext.getTypeDataflow(method);
		ConstantPoolGen constantPoolGen = classContext.getConstantPoolGen();

After Change


     * @param method
     */
    private void analyzeMethod(ClassContext classContext, Method method) throws MethodUnprofitableException, CFGBuilderException, DataflowAnalysisException {
    	if (method.isSynthetic() || (method.getAccessFlags() & Constants.ACC_BRIDGE) == Constants.ACC_BRIDGE) return;
		CFG cfg = classContext.getCFG(method);
		TypeDataflow typeDataflow = classContext.getTypeDataflow(method);
		ConstantPoolGen constantPoolGen = classContext.getConstantPoolGen();